home *** CD-ROM | disk | FTP | other *** search
/ Inter.Net 55-1 / Inter.Net 55-1.iso / CBuilder / Setup / BCB / data.z / invcrpt.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1998-02-09  |  872 b   |  23 lines

  1. //---------------------------------------------------------------------------
  2. #include <vcl.h>
  3. #pragma hdrstop
  4.  
  5. #include "invcrpt.h"
  6. #include "datamod.h"
  7. //---------------------------------------------------------------------------
  8. #pragma resource "*.dfm"
  9. TInvoiceByOrderNoReport *InvoiceByOrderNoReport;
  10. //---------------------------------------------------------------------------
  11. __fastcall TInvoiceByOrderNoReport::TInvoiceByOrderNoReport(TComponent* Owner)
  12.     : TForm(Owner)
  13. {
  14. }
  15. //---------------------------------------------------------------------------
  16. void __fastcall TInvoiceByOrderNoReport::InvoiceByOrderNoRptBeforePrint(
  17.       TQuickRep *Sender, bool &PrintReport)
  18. {
  19.     Sender->AllDataSets->Add(MastData->Cust);    
  20.     Sender->AllDataSets->Add(MastData->Orders);    
  21. }
  22. //---------------------------------------------------------------------------
  23.